46092911ca5262d6d13ad6f8247c5856854c0536,src/com/redhat/ceylon/compiler/codegen/Gen2.java,Gen2,makeAtMethod,#,626
Before Change
}
public List<JCAnnotation> makeAtMethod() {
if (disableModelAnnotations)
return List.nil();
return List.<JCAnnotation> of(make().Annotation(makeIdent(syms.ceylonAtMethodType), List.<JCExpression> nil()));
}
public boolean isInner(Declaration decl) {
After Change
}
public List<JCAnnotation> makeAtMethod() {
return makeModelAnnotation(syms.ceylonAtMethodType);
}
public boolean isInner(Declaration decl) {